Dart.Ftp Namespace > TcpBase Class > ReadToDelimiter Method : ReadToDelimiter(List<Byte[]>) Method |
Public Overloads Function ReadToDelimiter( _ ByVal delimiters As List(Of Byte()) _ ) As Data
Dim instance As TcpBase Dim delimiters As List(Of Byte()) Dim value As Data value = instance.ReadToDelimiter(delimiters)
public Data ReadToDelimiter( List<byte[]> delimiters )
public: Data^ ReadToDelimiter( List<array<byte>>^ delimiters )
Exception | Description |
---|---|
DataException | The delimiter was not found. The DataException.DataRead property contains any data received before the failure occurred. |
This method blocks until a delimiter is found, an exception is thrown, or the server closes the connection. The value of Data.Delimiter is set to the found delimiter, if any.
If a DataException is thrown, the DataException.DataRead property contains any data received prior to the exception.